home *** CD-ROM | disk | FTP | other *** search
/ Mac Mania 5 / MacMania 5.toast / / Tools&Utilities / Plotfoil 3.2 / naca-1.0 / Makehead.linux < prev    next >
Text File  |  1995-09-13  |  573b  |  41 lines

  1. #-----------------------------------------------------------------------------
  2. #
  3. #  Makefile made with makemake
  4. #
  5. #  Linux Version
  6. #
  7. #-----------------------------------------------------------------------------
  8. #
  9. .SUFFIXES:
  10. .SUFFIXES: .o .F .f .c
  11.  
  12. #
  13. # Compiler names
  14. #
  15. CC      = cc
  16. FC      = g77
  17. AR      = ar
  18. RANLIB  = ranlib
  19.  
  20. #
  21. # Compiler flags
  22. #
  23. CFLAGS = -O
  24. FFLAGS = -O
  25. ARFLAGS = rv
  26. LDFLAGS = -L. -lnaca
  27.  
  28. #
  29. #  Compile individual source files
  30. #
  31. .f.o:
  32.     $(FC) $(FFLAGS) -c $<
  33.  
  34. .c.o:
  35.     $(CC) $(CFLAGS) -c $<
  36.  
  37. #
  38. #  The f2c library seems to lack the exit() call
  39. #
  40. EXT = exit.o
  41.